.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    /* background-color: rgb(52 152 219); */
    transition: background-color 0.3s;
}

.hero-banner {
    background-image: url('./banner-bg.png');  /* replace with your image path */  
    height: 300px;
    text-align: center;
    justify-content: center;
    align-content: center;
}
  
  
.menu-background {
    background-color: #ffffff;
    /*background: linear-gradient(135deg, #222240, #1a1b2f, #242443);*/
    margin: 0px 0 0px 0;
    /*border: 1px solid #00bfff;*/
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 9;
    height: 80px;
    align-content: center;
    display: flex;
    flex-wrap: wrap;
}

#cssmenu {
        width: auto;
        line-height: 1;
        margin: 0px 0 0 0;
        }

#cssmenu > ul {
        float: right;
    }

#cssmenu > ul > li {
        float: left;
        -moz-transition: background 0.5s ease-in-out;
        -o-transition: background 0.5s ease-in-out;
        transition: background 0.5s ease-in-out;
        margin: 0 auto;
        padding: 0px 0px 0px 0px;
        text-align: left;
    }

#cssmenu > ul > li > a.active {
        color: #FFF;
        border-bottom: 0px solid #000;
        background: #00bfff;
    }

#cssmenu > ul > li > a:hover {
        color: #FFF;
        border-bottom: 0px solid #000;
        /*background: #00bfff;*/
        
    }

.call ul li {
        font-size: 20px;
        color: #000!important;
        margin: 0px 0px 0px;
        font-family: Arial, Helvetica, sans-serif;
        text-transform: capitalize;
        display: inline-block;
        box-shadow: 0 0 10px #ccc;
        padding: 0 5px;
    } 

    .clear {
        clear: both;
    }

    a {
        color: rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,));
        
    }
    #cssmenu > ul > li > a {
        padding: 12px 24px 12px;
        /* padding: 4px 0px; */
        font-size: 16px;
        text-decoration: none;
        text-transform: uppercase;
        -webkit-transition: color .2s ease;
        -moz-transition: color .2s ease;
        -ms-transition: color .2s ease;
        -o-transition: color .2s ease;
        transition: color .4s ease;
        /*color: #030548;*/
        font-weight: normal;
        
    }

    
    .navbar.scrolled #cssmenu > ul > li > a {
    
        color: #000;
    }

    .navbar.scrolled #cssmenu > ul > li > a.active {
    
        color: #fff;
    }
    
    
    .navbar.scrolled #cssmenu > ul > li:hover a{
    
        color: #fff;
    }


    .navbar.scrolled  #cssmenu #menu-button{
        color:#000;
    }
    
    
    .navbar.scrolled #cssmenu > ul > li.has-sub > a::after {
        position: absolute;
        top: 11px;
        right: 5px;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid #000;
        border-right: 2px solid #000;
        
    }
    
    .navbar.scrolled #cssmenu > ul > li.has-sub:hover a::after
    {
        border-bottom: 2px solid #fff;
        border-right: 2px solid #fff;
    }
        
    
    .navbar {
        position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: justify;
        justify-content: space-around;
        padding: 0px; 
    }

    .btn-style503 {
        
        transition: all 0.5s !important;
    }
    .btn-style503:hover {
        box-shadow: inset 7em 0 0 0 #83c340, inset -7em 0 0 0 #83c340;
        border-color: #83c340;
        color: #fff;
    }

    /* Fix the navbar to the top */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 9999; /* Ensure navbar is above other content */
      /*background-color: rgb(52 152 219);*/
      transition: background-color 0.3s;
    }

    /* Add margin-right to navbar items if needed */
    .navbar-nav .nav-item {
      margin-right: 20px; /* Adjust spacing */
    }

    /* Change background color after scroll */
    .navbar.scrolled {
      background-color: white;
    }

    /* Change navbar list items text color to white */
    .navbar-nav .nav-link {
      color: #fff !important; /* Default text color */
      font-weight:500;
      font-family: "Noto Serif", serif;
      font-size:20px;
    }

    /* Optional: slightly lighter color on hover */
    .navbar-nav .nav-link:hover {
      color: #ddd !important;
    }

    /* When the navbar is scrolled, change text color to black */
    .navbar.scrolled .navbar-nav .nav-link {
      color: black !important;
    }

    .navbar.scrolled .navbar-nav .nav-link:hover {
      color: #555 !important; /* Optional: slightly lighter color on hover when scrolled */
    }

    /* Set the brand logo dimensions */
    .navbar-brand img {
      width: auto; /* Set desired width */
      height: 90px; /* Maintain aspect ratio */
      margin-right: 40px;
    }

    /* Ensure the dropdown appears when hovering */
    .nav-item.dropdown:hover .dropdown-menu {
      display: block; /* Display the dropdown menu on hover */
    }

    /* Initially hide the dropdown */
    .dropdown-menu {
      display: none; /* Hide the dropdown by default */
      position: absolute; /* Position the dropdown below the parent item */
      background-color: white;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
      min-width: 200px; /* Set a minimum width for the dropdown */
    }

    /* Dropdown link styles */
    .dropdown-menu a {
      color: black; /* Color of the dropdown links */
    }

    /* Change color of dropdown link on hover */
    .dropdown-menu a:hover {
      color: #3498DB; /* Optional: Change color when hovered */
    }

    /* Center the navbar items */
    .navbar-nav {
      flex: 1;
      justify-content: center; /* Center items horizontally */
      display: flex; /* Use flexbox for centering */
    }

    /* Request button styling */
    .btn-request {
      background-color: #3498DB !important;
      color: #fff !important;
      border : 1px solid #fff !important;
      border-radius : 0 !important;
    }
    .btn-request:hover{
      background-color: #5ab52a;
      color:#fff;
      text-decoration: underline;
    }
    .navbar-nav .nav-item{
      margin-right: 30px;
    }
    /* Prevent navbar items from wrapping */
    .navbar-nav {
    flex-wrap: nowrap; /* Ensure all items stay in the same row */
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center items horizontally */
    }


  
    @media (max-width:768px){
        
        #cssmenu > ul {
        float: right;
        /*margin-right: 75px;*/
        background-color: #00bfff;
    }


    .mbnone{
        display:none;
    }
    } 

/* ---------------------------------------------------------
---------------------------------------------------------
             footer css 
---------------------------------------------------------
--------------------------------------------------------- */

.captcha-container{
	position: relative;
	overflow: hidden;
	/* padding: 10px 10px; */
}

.refresh-btn{
	padding: 8px;
	background: none!important;
	border: none!important;
	cursor: pointer!important;
}

.refresh-btn:hover{
	padding: 8px;
	background: none!important;
	border: none!important;

}

.captcha-box {
      font-size: 18px;
      font-weight: bold;
      letter-spacing: 4px;
      background: none;
      /*padding: 8px 28px;*/
      display: inline-block;
      margin-bottom: 10px;
	  margin-top: 0px;
      border:none;
      user-select: none;
	  margin-right: 50px;
	  margin-left: 50px;
    }
    .error { color: red; }
    .success { color: green; }




    
        input[type="text"],  
        input[type="email"],  
        input[type="tel"],  
        select,  
        textarea {  
            width: 100%!important;  
            padding: 10px;  
            margin: 10px 0;  
            border: 1px solid #ccc;  
            border-radius: 5px;
            box-shadow: 0px 2px 18px 0px rgb(0 0 0 / 30%);
        }
    
    .modal .popup-content{
        
        padding:0px !important;
    }
    
    .modal{
        top:0;
        z-index:99999 !important;
    }
    
    
    .modal .contact-container {
   
       background: transparent !important;
    }
    
    
    .modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -3rem -1rem auto;
}

.close {
    font-size:35px;
    color:red !important;
}
    
    
    .footer .nav{
        display: flex;
    align-items: center;
    /* gap: 1px; */
    border: 1px solid var(--border);
    border-radius: 21px;
    justify-content: center;
    margin-bottom: 30px;
    width: 100%!important;
    margin: auto!important;
    }
/* Footer Content Styles */
.footer {  
  position: relative;  
  background-image: url('../bg/footerbg.jpeg');
  background-size: cover;  
  background-attachment: fixed;  
  height: auto;  
  color: white;  
  text-align: center;  
  overflow: hidden;  
  padding-top: 50px;  
}  

.overlay {  
  position: absolute;  
  top: 0;  
  left: 0;  
  right: 0;  
  bottom: 0;  
  z-index: -10 ;
  background: rgba(0, 0, 0, 0.5);  
}

.container {   
  z-index: 2;  
  padding: 20px;  
}

/* Footer Content Styles */
.footer-content {
  /*display: flex;*/
  /*flex-wrap: wrap;*/
  /*justify-content: space-between;*/
  /*padding-top: 40px ;*/
  /*width: 90%;*/
  margin: 0 auto;
  text-align: center; /* Ensure text is centered */
}

.footer-about-us, .request-catalogue, .useful-links, .contact-info {
  flex: 1 1 100px;
  /*margin: 20px;*/
  padding: 20px;
  border-radius: 8px;
  text-align: center; /* Ensures content inside each section is centered */
}
.request-catalogue{
    margin: 0px;
  padding: 10px;
}

.footer-about-us h3, .request-catalogue h3, .useful-links h3, .contact-info h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: left;
}

.footer-about-us p, .useful-links ul, .contact-info p {
  color: #fff;
  font-size: 16px;
}
.contact-icon{
  width: 20px;
}
.footer-about-us p {
  text-align: left;
}

.contact-info p {
  text-align: left;
  margin: 10px 0px;
}

.useful-links ul {
  padding: 0;
  list-style: none;
}

.useful-links ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.useful-links ul li a {
  color: white;
  transition: color 0.3s ease;
  font-size: 16px;
}

.useful-links ul li a i {
  font-size: 18px;
  color: #ffff;
}

.request-catalogue  {
  display: block;
  background-color: #1D94DC;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.request-catalogue {
  border: 1PX solid #fff;
  color: #fff;
}

.request-catalogue:hover {
  color: #fff;
  text-decoration: none;
}

.contact-info {
  text-align: left;  
  padding: 20px;  
  align-items: center;  
  flex-direction: column; 
}

.contact-info a {
  color: white;
  text-decoration: none;
}

.contact-info a:hover {
  color: #007bff;
}

/* Footer Bottom */
.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-top: 1px solid #fff;
}

.footer-bottom .copyright {
  font-size: 14px;
}

.footer-bottom .footer-social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.footer-bottom .footer-social-icons a {
  font-size: 20px;
  color: white;
  transition: color 0.3s ease;
}

.footer-bottom .social-icons a:hover {
  color: #007bff;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-content {
      flex-direction: column; /* Stack the footer sections vertically */
      align-items: center; /* Center the sections horizontally */
  }

  .footer-about-us, .request-catalogue, .useful-links, .contact-info {
      flex: 1 1 100%;
      padding: 10px;
      margin: 15px 0;
      text-align: center; /* Center text inside each section */
  }

  .footer-about-us h3, .request-catalogue h3, .useful-links h3, .contact-info h3 {
      font-size: 18px;
  }

  .footer-about-us p, .useful-links ul, .contact-info p {
      font-size: 14px;
  }

  .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .footer-bottom .copyright {
      margin-bottom: 10px;
  }

  .footer-bottom .footer-social-icons {
      justify-content: center;
  }

  .footer-bottom .footer-social-icons a {
      font-size: 18px;
  }

  /* Adjust the tab navigation to be responsive */
  .nav-item {
    width: auto; /* Allow the tabs to be flexible */
    margin: 5px 0; /* Add margin between items */
  }

  .nav-link {
    padding: 8px 12px;
    font-size: 14px; /* Make tab text smaller on mobile */
  }
}

@media (max-width: 480px) {
  .footer-content {
      padding: 10px;
  }

  .footer-about-us, .request-catalogue, .useful-links, .contact-info {
      flex: 1 1 100%;
      margin: 10px 0;
      padding: 15px;
      text-align: left; /* Center text inside each section */
  }

  .footer-about-us h3, .request-catalogue h3, .useful-links h3, .contact-info h3 {
      font-size: 16px;
  }

  .footer-about-us p, .useful-links ul, .contact-info p {
      font-size: 12px;
  }

  .footer-bottom .footer-social-icons a {
      font-size: 16px;
  }

  /* Adjust the tab navigation to be more mobile-friendly */
  .nav-link {
    font-size: 14px;
    padding: 6px 10px;
  }
}
/* Custom Styling for the Tab Navigation */
.custom-nav .nav-link {
    color: #fff; /* Text color for inactive tabs */
    background-color: transparent; /* Background color for inactive tabs */
    border: 1px solid #fff;
    border-radius: 0;
}

/* Active tab style */
.custom-nav .nav-link.active {
    color: black; /* Text color for active tab */
    background-color: #fff; /* Green background for active tab */
}

/* Styling for Tab Content */
.custom-tab-content .tab-pane {
    background-color: #f8f9fa; /* Light background for content */
    border: 1px solid #ddd; /* Border around content */
    color: #333; /* Dark text for content */
    margin-top: 20px;
}

/* Optional: Different background color for each content tab */
.custom-tab-content .tab-pane {
    background-color: #fff; /* Light blue for Paint Testing */
    width: 100%;
}



/* Responsive Styles for smaller screens */
@media (max-width: 992px) {
  .nav-item {
    width: 33.33%; /* Each tab will take up a third of the space on medium screens */
  }

  .custom-tab-content .tab-pane {
    width: 100%; /* Tab content will take up full width */
  }
}

@media (max-width: 768px) {
  .nav-item {
    width: 50%; /* On tablets, each tab will take up half the width */
  }

  .custom-tab-content .tab-pane {
    width: 100%; /* Tab content will take up full width */
  }
}

@media (max-width: 576px) {
  .nav-item {
    width: 100%; /* On mobile, each tab will take up the full width */
  }

  .custom-tab-content .tab-pane {
    width: 100%; /* Tab content will take up full width */
  }

  .custom-nav {
    text-align: center; /* Center the tab navigation on small screens */
  }
}
